home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / shells / rc-1.000 / rc-1 / rc-1.5-linux / sigmsgs.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-03-24  |  927 b   |  34 lines

  1. #include "sigmsgs.h"
  2.  
  3. Sigmsgs signals[] = {
  4.     {"",""},
  5.     {"sighup","hangup"},
  6.     {"sigint",""},
  7.     {"sigquit","quit"},
  8.     {"sigill","illegal instruction"},
  9.     {"sigtrap","trace trap"},
  10.     {"sigabrt","abort instruction"},
  11.     {"sigunused","unused signal"},
  12.     {"sigfpe","floating point exception"},
  13.     {"sigkill","killed"},
  14.     {"sigusr1","user defined signal 1"},
  15.     {"sigsegv","segmentation violation"},
  16.     {"sigusr2","user defined signal 2"},
  17.     {"sigpipe",""},
  18.     {"sigalrm","alarm clock"},
  19.     {"sigterm","terminated"},
  20.     {"sigstkflt","stack fault"},
  21.     {"sigchld","child stop or exit"},
  22.     {"sigcont","continue"},
  23.     {"sigtstop","stopped"},
  24.     {"sigstp","stopped"},
  25.     {"sigttin","background tty read"},
  26.     {"sigttou","background tty write"},
  27.     {"sigio","input/output possible"},
  28.     {"sigxcpu","exceeded cpu time limit"},
  29.     {"sigxfsz","exceeded file size limit"},
  30.     {"sigvtalrm","virtual time alarm"},
  31.     {"sigprof","profiling time alarm"},
  32.     {"sigwinch","window changed"}
  33. };
  34.